home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / lib / perl5 / Glib / GenPod.pm < prev    next >
Text File  |  2009-04-29  |  35KB  |  1,423 lines

  1. #
  2. #
  3. #
  4. # TODO:
  5. #    should we look at signals etc. for enums/flags?
  6. #    we're getting warnings about unregistered types with new enums/flags 
  7. #    stuff, quell them.
  8. #
  9.  
  10. package Glib::GenPod;
  11.  
  12. our $VERSION = '0.03';
  13.  
  14. use strict;
  15. use warnings;
  16. use Carp;
  17. use File::Spec;
  18. use Data::Dumper;
  19. use POSIX qw(strftime);
  20.  
  21. use Glib;
  22.  
  23. use base 'Exporter';
  24.  
  25. our @EXPORT = qw(
  26.     add_types
  27.     xsdoc2pod
  28.     podify_properties
  29.     podify_values
  30.     podify_signals
  31.     podify_ancestors
  32.     podify_interfaces
  33.     podify_methods
  34.     podify_enums_and_flags
  35.     podify_deprecated_by
  36. );
  37.  
  38. our $COPYRIGHT = undef;
  39. our $AUTHORS = 'Gtk2-Perl Team';
  40. our $MAIN_MOD = undef;
  41. our $YEAR = strftime "%Y", gmtime;
  42.  
  43. our ($xspods, $data);
  44.     
  45. =head1 NAME
  46.  
  47. Glib::GenPod - POD generation utilities for Glib-based modules
  48.  
  49. =head1 SYNOPSIS
  50.  
  51.  use Glib::GenPod;
  52.  
  53.  # use the defaults:
  54.  xsdoc2pod ($xsdocparse_output_file, $destination_dir);
  55.  
  56.  # or take matters into your own hands
  57.  require $xsdocparse_output_file;
  58.  foreach my $package (sort keys %$data) {
  59.      print "=head1 NAME\n\n$package\n\n";
  60.      print "=head1 METHODS\n\n" . podify_methods ($package) . "\n\n";
  61.  }
  62.  
  63. =head1 DESCRIPTION 
  64.  
  65. This module includes several utilities for creating pod for xs-based Perl
  66. modules which build on the Glib module's foundations.  The most important bits
  67. are the logic to convert the data structures created by xsdocparse.pl to
  68. describe xsubs and pods into method docs, with call signatures and argument
  69. descriptions, and converting C type names into Perl type names.  The rest of
  70. the module is mostly boiler-plate code to format and pretty-print information
  71. that may be queried from the Glib type system.
  72.  
  73. To make life easy for module maintainers, we also include a do-it-all function,
  74. xsdoc2pod(), which does pretty much everything for you.  All of the pieces it
  75. uses are publically usable, so you can do whatever you like if you don't like
  76. the default output.
  77.  
  78. =head1 DOCUMENTING THE XS FILES
  79.  
  80. All of the information used as input to the methods included here comes from
  81. the XS files of your project, and is extracted by Glib::ParseXSDoc's
  82. C<xsdocparse>.  This function creates an file containing Perl code that may be
  83. eval'd or require'd to recreate the parsed data structures, which are a list of
  84. pods from the verbatim C portion of the XS file (the xs api docs), and a hash
  85. of the remaining data, keyed by package name, and including the pods and xsubs
  86. read from the rest of each XS file following the first MODULE line.
  87.  
  88. Several custom POD directives are recognized in the XSubs section.  Note that
  89. each one is sought as a paragraph starter, and must follow a C<=cut> directive.
  90.  
  91. =over
  92.  
  93. =item =for object Package::Name
  94.  
  95. All xsubs and pod from here until the next object directive or MODULE line
  96. will be placed under the key 'I<Package::Name>' in xsdocparse's data
  97. structure.  Everything from this line to the next C<=cut> is included as a
  98. description POD.
  99.  
  100. =item =for object Package::Name (Other::Package::Name)
  101.  
  102. Generate POD in I<Package::Name> but for the package I<Other::Package::Name>.
  103. This is useful if you want POD to appear in a different namespace but still
  104. want the automatically generated hierarchy, signal and property listing,
  105. etc. from the original namespace.  For example:
  106.  
  107.   =for object Gnome2::PanelApplet::main (Gnome2::PanelApplet)
  108.   =cut
  109.  
  110. This will create Gnome2/PanelApplet/main.pod containing the automatically
  111. generated documentation for Gnome2::PanelApplet (hierarchy, signals, etc.) plus
  112. the method listing from the current XS file.
  113.  
  114. =item =for enum Package::Name
  115.  
  116. =item =for flags Package::Name
  117.  
  118. This causes xsdoc2pod to call C<podify_values> on I<Package::Name> when
  119. writing the pod for the current package (as set by an object directive or
  120. MODULE line).  Any text in this paragraph, to the next C<=cut>, is included
  121. in that section.
  122.  
  123. =item =for deprecated_by Package::Name
  124.  
  125. Used to add a deprecation warning, indicating I<Package::Name> as an
  126. alternative way to achieve the same functionality.  There may be any number
  127. these in each package.
  128.  
  129. =item =for see_also L<some_thing_to_see>
  130.  
  131. Used to add extra see alsos onto the end of the parents, if any, for a given
  132. object.  Anything following the space behind see_also up to the end of the
  133. line will be placed onto the list of "see also"s.  There may be any number of
  134. these in each package.
  135.  
  136. =item =for apidoc
  137.  
  138. =item =for apidoc Full::Symbol::name
  139.  
  140. Paragraphs of this type document xsubs, and are associated with the xsubs
  141. by xsdocparse.pl.  If the full symbol name is not included, the paragraph
  142. must be attached to the xsub declaration (no blank lines between C<=cut> and
  143. the xsub).
  144.  
  145. Within the apidoc PODs, we recognize a few special directives (the "for\s+"
  146. is optional on these):
  147.  
  148. =over
  149.  
  150. =item =for signature ...
  151.  
  152. Override the generated call signature with the ... text.  If you include
  153. multiple signature directives, they will all be used.  This is handy when
  154. you want to change the return type or list different ways to invoke an
  155. overloaded method, like this:
  156.  
  157.  =for apidoc
  158.  
  159.  =signature bool Class->foo
  160.  
  161.  =signature ($thing, @other) = $object->foo ($it, $something)
  162.  
  163.  Text in here is included in the generated documentation.
  164.  You can actually include signature and arg directives
  165.  at any point in this pod -- they are stripped after.
  166.  In fact, any pod is valid in here, until the =cut.
  167.  
  168.  =cut
  169.  void foo (...)
  170.      PPCODE:
  171.         /* crazy code follows */
  172.  
  173. =item =for arg name (type) description
  174.  
  175. =item =for arg name description
  176.  
  177. The arg directive adds or overrides an argument description.  The
  178. description text is optional, as is the type specification (the part
  179. in parentheses).  If you want to hide an argument, specify C<__hide__>
  180. as its type.  The arg name does I<not> need to include a sigil,
  181. as dollar signs will be added.  FIXME what about @ for lists?
  182.  
  183. =back
  184.  
  185. Also, we honor a couple of "modifiers" on the =for apidoc line, following the
  186. symbol name, if present:
  187.  
  188. =over
  189.  
  190. =item - __hide__
  191.  
  192. Do not document this xsub.  This is handy in certain situations, e.g., for
  193. private functions.  DESTROY always has this turned on, for example.
  194.  
  195. =item - __gerror__
  196.  
  197. This function or method can generate a Glib::Error exception.
  198.  
  199. =item - __function__
  200.  
  201. Generate a function-style signature for this xsub.  The default is to
  202. generate method-style signatures.
  203.  
  204. =item - __deprecated__
  205.  
  206. This function or method is deprecated and should not be used in newly written
  207. code.
  208.  
  209. =back
  210.  
  211. (These are actually handled by Glib::ParseXSDoc, but we list them here
  212. because, well, they're an important part of how you document the XS files.)
  213.  
  214. =back
  215.  
  216. =head1 FUNCTIONS
  217.  
  218. =over
  219.  
  220. =cut
  221.  
  222. =item xsdoc2pod ($datafile, $outdir='blib/lib', index=undef)
  223.  
  224. Given a I<$datafile> containing the output of xsdocparse.pl, create in 
  225. I<$outdir> a pod file for each package, containing everything we can think
  226. of for that module.  Output is controlled by the C<=for object> directives
  227. and such in the source code.
  228.  
  229. If you don't want each package to create a separate pod file, then use
  230. this function's code as a starting point for your own pretty-printer.
  231.  
  232. =cut
  233.  
  234. sub xsdoc2pod
  235. {
  236.     my $datafile = shift();
  237.     my $outdir   = shift() || 'blib/lib';
  238.     my $index    = shift;
  239.  
  240.     mkdir $outdir unless (-d $outdir);
  241.  
  242.     die "usage: $0 datafile [outdir]\n"
  243.         unless defined $datafile;
  244.  
  245.     require $datafile;
  246.  
  247.     my @files = ();
  248.  
  249.     my $pkgdata;
  250.     my $ret;
  251.  
  252.     foreach my $package (sort { ($a->isa('Glib::Object') ? -1 : 1) } 
  253.                 keys %$data)
  254.     {
  255.         $pkgdata = $data->{$package};
  256.  
  257.         my $pod = File::Spec->catfile ($outdir, split /::/, $package)
  258.                 . '.pod';
  259.         my (undef, @dirs, undef) = File::Spec->splitpath ($pod);
  260.         mkdir_p (File::Spec->catdir (@dirs));
  261.  
  262.         open POD, ">$pod" or die "can't open $pod for writing: $!\n";
  263.         select POD;
  264.  
  265.         $package = $pkgdata->{object} if (exists $pkgdata->{object});
  266.  
  267.         preprocess_pod ($_) foreach (@{$pkgdata->{pods}});
  268.  
  269.         push @files, {
  270.             name => $package,
  271.             file => $pod,
  272.             blurb => $pkgdata->{blurb},
  273.         };
  274.  
  275.         # podify_pods() always returns proper POD with a =cut at the
  276.         # end.  But all the other =head1 below need a closing =cut.
  277.  
  278.         print "=head1 NAME\n\n$package";
  279.                 if(exists ($pkgdata->{blurb})) {
  280.         print ' - '.$pkgdata->{blurb};
  281.                 } elsif($package =~ m/^Gtk2::Pango/) {
  282.                 my $newname = $package;
  283.                 $newname =~ s/Gtk2:://;
  284.                 print ' - moved to ' . $newname . ', kept for backwards compatibility'
  285.                 } elsif(convert_to_cname($package)) {
  286.                 print ' - wrapper for '.convert_to_cname($package);
  287.                 }
  288.         print "\n\n=cut\n\n";
  289.  
  290.         #                   pods            , position 
  291.         $ret = podify_pods ($pkgdata->{pods}, 'SYNOPSIS');
  292.         print "$ret\n\n" if ($ret);
  293.         
  294.         $ret = podify_pods ($pkgdata->{pods}, 'DESCRIPTION');
  295.         print "$ret\n\n" if ($ret);
  296.         
  297.         my $parents;
  298.         ($ret, $parents) = podify_ancestors ($package);
  299.         print "=head1 HIERARCHY\n\n$ret\n\n=cut\n\n" if ($ret);
  300.         
  301.         $ret = podify_pods ($pkgdata->{pods}, 'post_hierarchy');
  302.         print "$ret\n\n" if ($ret);
  303.         
  304.         $ret = podify_interfaces ($package);
  305.         print "=head1 INTERFACES\n\n$ret\n\n=cut\n\n" if ($ret);
  306.         
  307.         $ret = podify_pods ($pkgdata->{pods}, 'post_interfaces');
  308.         print "$ret\n\n" if ($ret);
  309.  
  310.         $ret = podify_pods ($pkgdata->{pods});
  311.         print "$ret\n\n" if ($ret);
  312.  
  313.         $ret = podify_deprecated_by ($package, @{ $pkgdata->{deprecated_bys} });
  314.         print "\n=head1 DEPRECATION WARNING\n\n$ret\n\n=cut\n\n" if ($ret);
  315.  
  316.         $ret = podify_methods ($package, $pkgdata->{xsubs});
  317.         print "\n=head1 METHODS\n\n$ret\n\n=cut\n\n" if ($ret);
  318.         
  319.         $ret = podify_pods ($pkgdata->{pods}, 'post_methods');
  320.         print "$ret\n\n" if ($ret);
  321.  
  322.         $ret = podify_properties ($package);    
  323.         print "\n=head1 PROPERTIES\n\n$ret\n\n=cut\n\n" if ($ret);
  324.  
  325.         $ret = podify_pods ($pkgdata->{pods}, 'post_properties');
  326.         print "$ret\n\n" if ($ret);
  327.  
  328.         $ret = podify_signals ($package);    
  329.         print "\n=head1 SIGNALS\n\n$ret\n\n=cut\n\n" if ($ret);
  330.  
  331.         $ret = podify_pods ($pkgdata->{pods}, 'post_signals');
  332.         print "$ret\n\n" if ($ret);
  333.  
  334.         $ret = podify_enums_and_flags ($pkgdata, $package);    
  335.         print "\n=head1 ENUMS AND FLAGS\n\n$ret\n\n=cut\n\n" if ($ret);
  336.  
  337.         $ret = podify_pods ($pkgdata->{pods}, 'post_enums');
  338.         print "$ret\n\n" if ($ret);
  339.  
  340.         $ret = podify_pods ($pkgdata->{pods}, 'SEE_ALSO');
  341.         if ($ret)
  342.         {
  343.             print "$ret\n\n";
  344.         }
  345.         else
  346.         {
  347.             # don't link to yourself
  348.             pop @$parents;
  349.             # link to the toplevel, if we can.
  350.             unshift @$parents, $MAIN_MOD if $MAIN_MOD;
  351.  
  352.             $ret = podify_see_alsos (@$parents,
  353.                                      $pkgdata->{see_alsos}
  354.                          ? @{ $pkgdata->{see_alsos} }
  355.                                      : ());
  356.             print "\n=head1 SEE ALSO\n\n$ret\n\n=cut\n\n" if ($ret);
  357.         }
  358.  
  359.         $ret = podify_pods ($pkgdata->{pods}, 'COPYRIGHT');
  360.         if ($ret)
  361.         {
  362.             # copyright over-ridden
  363.             print "$ret\n\n" 
  364.         }
  365.         else
  366.         {
  367.             # use normal copyright system
  368.             $ret = get_copyright ();
  369.             print "\n=head1 COPYRIGHT\n\n$ret\n\n=cut\n\n" if ($ret);
  370.         }
  371.  
  372.         close POD;
  373.     }
  374.  
  375.     if ($index) {
  376.         open INDEX, ">$index"
  377.             or die "can't open $index for writing: $!\b";
  378.         select INDEX;
  379.  
  380.         foreach (sort {$a->{name} cmp $b->{name}} @files) {
  381.             print join("\t", $_->{file},
  382.                    $_->{name},
  383.                    $_->{blurb} ? $_->{blurb} : () ) . "\n";
  384.         }
  385.         
  386.         close INDEX;
  387.     }
  388. }
  389.  
  390. # more sensible names for the basic types
  391. our %basic_types = (
  392.     # the perl wrappers for the GLib fundamentals
  393.     'Glib::Scalar'  => 'scalar',
  394.     'Glib::String'  => 'string',
  395.     'Glib::Int'     => 'integer',
  396.     'Glib::Uint'    => 'unsigned',
  397.     'Glib::Double'  => 'double',
  398.     'Glib::Boolean' => 'boolean',
  399.  
  400.     # sometimes we can get names that are already mapped...
  401.     # e.g., from =for arg lines.  pass them unbothered.
  402.     scalar     => 'scalar',
  403.     subroutine => 'subroutine',
  404.     integer    => 'integer',
  405.     string     => 'string',
  406.     package    => 'package',
  407.     list       => 'list',
  408.  
  409.     # other C names which may sneak through
  410.     bool     => 'boolean', # C++ keyword, but provided by the perl api
  411.     boolean  => 'boolean',
  412.     int      => 'integer',
  413.     char     => 'integer',
  414.     uint     => 'unsigned',
  415.     float    => 'double',
  416.     double   => 'double',
  417.     char     => 'string',
  418.     unsigned => 'unsigned',
  419.  
  420.     gboolean => 'boolean',
  421.     gint     => 'integer',
  422.     gint8    => 'integer',
  423.     gint16   => 'integer',
  424.     gint32   => 'integer',
  425.     guint8   => 'unsigned',
  426.     guint16  => 'unsigned',
  427.     guint32  => 'unsigned',
  428.     gulong   => 'unsigned',
  429.     gshort   => 'integer',
  430.     guint    => 'integer',
  431.     gushort  => 'unsigned',
  432.     gfloat   => 'double',
  433.     gdouble  => 'double',
  434.     gchar    => 'string',
  435.  
  436.     SV       => 'scalar',
  437.     UV       => 'unsigned',
  438.     IV       => 'integer',
  439.     CV       => 'subroutine',
  440.  
  441.     gchar_length => 'string',
  442.  
  443.     FILE => 'file handle',
  444.     time_t => 'unix timestamp',
  445.  
  446.     GPerlFilename    => 'localized file name',
  447.     GPerlFilename_const    => 'localized file name',
  448. );
  449.  
  450. unless (Glib->CHECK_VERSION (2, 4, 0)) {
  451.     $basic_types{'Glib::Strv'} = 'ref to array of strings';
  452. }
  453.  
  454. =item add_types (@filenames)
  455.  
  456. Parse the given I<@filenames> for entries to add to the C<%basic_types> used
  457. for C type name to Perl package name mappings of types that are not registered
  458. with the Glib type system.  The file format is dead simple: blank lines are
  459. ignored; /#.*$/ is stripped from each line as comments; the first token on
  460. each line is considered to be a C type name, and the remaining tokens are the
  461. description of that type.  For example, a valid file may look like this:
  462.  
  463.   # a couple of special types
  464.   FooBar      Foo::Bar
  465.   Frob        localized frobnicator
  466.  
  467. C type decorations such as "const" and "*" are implied (do not include them),
  468. and the _ornull variant is handled for you.
  469.  
  470. =cut
  471.  
  472. sub add_types {
  473.     my @files = @_;
  474.     foreach my $f (@files) {
  475.         open IN, $f or die "can't open types file $f: $!\n";
  476.         my $n = 0;
  477.         while (<IN>) {
  478.             chomp;
  479.             s/#.*//;
  480.             next if m/^\s*$/;
  481.             my ($c_name, @bits) = split;
  482.             if (@bits) {
  483.                 $basic_types{$c_name} = join ' ', @bits;
  484.                 $n++;
  485.             } else {
  486.                 warn "$f:$.: no description for $c_name\n"
  487.             }
  488.         }
  489.         print "Loaded $n extra types from $f\n";
  490.         close IN;
  491.     }
  492. }
  493.  
  494.  
  495. =item $string = podify_properties ($packagename)
  496.  
  497. Pretty-print the object properties owned by the Glib::Object derivative
  498. I<$packagename> and return the text as a string.  Returns undef if there
  499. are no properties or I<$package> is not a Glib::Object.
  500.  
  501. =cut
  502.  
  503. sub podify_properties {
  504.     my $package = shift;
  505.     my @properties;
  506.     eval { @properties = Glib::Object::list_properties($package); 1; };
  507.     return undef unless (@properties or not $@);
  508.  
  509.     # we have a non-zero number of properties, but there may still be
  510.     # none for this particular class.  keep a count of how many
  511.     # match this class, so we can return undef if there were none.
  512.     my $nmatch = 0;
  513.     my $str = "=over\n\n";
  514.     foreach my $p (sort { $a->{name} cmp $b->{name} } @properties) {
  515.         next unless $p->{owner_type} eq $package;
  516.         ++$nmatch;
  517.         my $stat = join " / ",  @{ $p->{flags} };
  518.         my $type = exists $basic_types{$p->{type}}
  519.               ? $basic_types{$p->{type}}
  520.               : $p->{type};
  521.         $str .= "=item '$p->{name}' ($type : $stat)\n\n";
  522.         $str .= "$p->{descr}\n\n" if (exists ($p->{descr}));
  523.     }
  524.     $str .= "=back\n\n";
  525.  
  526.     return $nmatch ? $str : undef;
  527. }
  528.  
  529. =item $string = podify_values ($packagename)
  530.  
  531. List and pretty-print the values of the GEnum or GFlags type I<$packagename>,
  532. and return the text as a string.  Returns undef if I<$packagename> isn't an
  533. enum or flags type.
  534.  
  535. =cut
  536.  
  537. sub podify_values {
  538.     my $package = shift;
  539.     my @values;
  540.     eval { @values = Glib::Type->list_values ($package); 1; };
  541.     return undef unless (@values or not $@);
  542.  
  543.     return "=over\n\n"
  544.          . join ("\n\n", map { "=item * '$_->{nick}' / '$_->{name}'" } @values)
  545.          . "\n\n=back\n\n";
  546. }
  547.  
  548. =item $string = podify_signals ($packagename)
  549.  
  550. Query, list, and pretty-print the signals associated with I<$packagename>.
  551. Returns the text as a string, or undef if there are no signals or
  552. I<$packagename> is not a Glib::Object derivative.
  553.  
  554. =cut
  555.  
  556. sub podify_signals {
  557.     my $str = undef;
  558.     eval {
  559.     my @sigs = Glib::Type->list_signals (shift);
  560.     return undef unless @sigs;
  561.     $str = "=over\n\n";
  562.     foreach (@sigs) {
  563.         $str .= '=item ';
  564.         $str .= convert_type ($_->{return_type}).' = '
  565.             if exists $_->{return_type};
  566.         $str .= "B<$_->{signal_name}> (";
  567.         $str .= join ', ', map { convert_type ($_) }
  568.                 $_->{itype}, @{$_->{param_types}};
  569.         $str .= ")\n\n";
  570.     }
  571.     $str .= "=back\n\n";
  572.     };
  573.     return $str
  574. }
  575.  
  576. =item $string = podify_deprecated_by ($packagename, @deprecated_by)
  577.  
  578. Creates a deprecation warning for $packagename, suggesting using the items
  579. inside @deprecated_by instead.
  580.  
  581. =cut
  582.  
  583. sub podify_deprecated_by
  584. {
  585.     my $package       = shift;
  586.     my @deprecated_by = @_;
  587.  
  588.     return undef unless scalar @deprecated_by;
  589.  
  590.     my $str = "$package has been marked as deprecated, and should not be "
  591.             . "used in newly written code.\n\n";
  592.  
  593.     # create the deprecated for list
  594.     $str .= "You should use "
  595.           . join (', ',
  596.                   map {
  597.             if (/^\s*L</) {
  598.                 $_;
  599.             }
  600.             else {
  601.                 "L<$_>";
  602.             }
  603.               } @deprecated_by)
  604.           . " instead of $package.\n";
  605.  
  606.     return $str;
  607. }
  608.  
  609. sub podify_enums_and_flags
  610. {
  611.     my $pkgdata = shift;
  612.     my $package = shift;
  613.     
  614.     my %types = ();
  615.     
  616.     my $name;
  617.     my $pod;
  618.     my %info = ();
  619.     foreach (@{$pkgdata->{enums}})
  620.     {
  621.         $name = convert_type ($_->{name});
  622.             
  623.         $pod = $_->{pod};
  624.         shift @{ $pod->{lines} };
  625.         pop @{ $pod->{lines} } if $pod->{lines}[-1] =~ /^=cut/;
  626.  
  627.         $info{$name} = {
  628.             type => $_->{type},
  629.             pod  => $pod->{lines},
  630.         };
  631.         $types{$name}++;
  632.     }
  633.  
  634.     foreach my $xsub (@{$pkgdata->{xsubs}})
  635.     {
  636.         if ($xsub->{return_type})
  637.         {
  638.             foreach my $ret (@{$xsub->{return_type}})
  639.             {
  640.                 $name = convert_type ($ret);
  641.                 $types{$name}++;
  642.             }
  643.         }
  644.         if ($xsub->{args})
  645.         {
  646.             foreach my $arg (@{$xsub->{args}})
  647.             {
  648.                 if ($arg->{type})
  649.                 {
  650.                     $name = convert_type ($arg->{type});
  651.                     $types{$name}++;
  652.                 }
  653.             }
  654.         }
  655.     }
  656.  
  657.     if ($package)
  658.     {
  659.         my @props;
  660.         eval { @props = Glib::Object::list_properties($package); 1; };
  661.         foreach my $prop (@props)
  662.         {
  663.             next unless ($prop->{type});
  664.             next unless $prop->{owner_type} eq $package;
  665.             $name = convert_type ($prop->{type});
  666.             $types{$name}++;
  667.         }
  668.         
  669.         my @sigs;
  670.         eval { @sigs = Glib::Type->list_signals ($package); 1; };
  671.         foreach my $sig (@sigs)
  672.         {
  673.             if ($sig->{return_type})
  674.             {
  675.                 $name = convert_type ($sig->{return_type});
  676.                 $types{$name}++;
  677.             }
  678.             foreach (@{$sig->{param_types}})
  679.             {
  680.                 next unless ($_);
  681.                 $name = convert_type ($_);
  682.                 $types{$name}++;
  683.             }
  684.         }
  685.     }
  686.  
  687.     my $ret = '';
  688.     foreach (sort keys %types)
  689.     {
  690.         s/\s.*//;
  691.  
  692.         next if $_ eq 'Glib::Enum' || $_ eq 'Glib::Flags';
  693.  
  694.         my $values_pod = podify_values ($_);
  695.  
  696.         if ($values_pod || exists $info{$_})
  697.         {
  698.             my $type = UNIVERSAL::isa ($_, 'Glib::Flags') ?
  699.                     'flags' : 'enum';
  700.             $ret .= "=head2 $type $_\n\n";
  701.             $ret .= join ("\n", @{$info{$_}{pod}}) . "\n\n"
  702.                 if ($info{$_}{pod});
  703.             $ret .= podify_values ($_) . "\n";
  704.         }
  705.     }
  706.     
  707.     return $ret;
  708. }
  709.  
  710.  
  711. =item $string = podify_pods ($pods, $position)
  712.  
  713. Helper function to allow specific placement of generic pod within the auto
  714. generated pages. Pod sections starting out with =for position XXX, where XXX
  715. is one of the following will be placed at a specified position. In the case of
  716. pod that is to be placed after a particular section that doesn't exist, that
  717. pod will be still be placed there.
  718.  
  719. This function is called at all of the specified points through out the process
  720. of generating pod for a page. Any pod matching the I<position> passed will be
  721. returned, undef if no matches were found.  If I<position> is undef all pods
  722. without sepcific postion information will be returned. I<pods> is a reference
  723. to an array of pod hashes.
  724.  
  725. =over
  726.  
  727. =item * SYNOPSIS
  728.  
  729. After the NAME section
  730.  
  731. =item * DESCRIPTION
  732.  
  733. After the SYNOPSIS section.
  734.  
  735. =item * post_hierarchy
  736.  
  737. After the HIERARCHY section.
  738.  
  739. =item * post_interfaces
  740.  
  741. After the INTERFACE section.
  742.  
  743. =item * post_methods
  744.  
  745. After the METHODS section.
  746.  
  747. =item * post_properties
  748.  
  749. After the PROPERTIES section.
  750.  
  751. =item * post_signals
  752.  
  753. After the SIGNALS section.
  754.  
  755. =item * post_enums
  756.  
  757. After the ENUMS AND FLAGS section.
  758.  
  759. =item * SEE_ALSO
  760.  
  761. Replacing the autogenerated SEE ALSO section completely.
  762.  
  763. =item * COPYRIGHT
  764.  
  765. Replacing the autogenerated COPYRIGHT section completely.
  766.  
  767. =back
  768.  
  769. =cut
  770.  
  771. sub podify_pods
  772. {
  773.     my $pods = shift;
  774.     my $position = shift;
  775.  
  776.     my $ret = '';
  777.  
  778.     if ($position)
  779.     {
  780.         foreach (@$pods)
  781.         {
  782.             $ret .= join ("\n", @{$_->{lines}})."\n\n"
  783.                 if (exists ($_->{position}) and 
  784.                     $_->{position} eq $position);
  785.         }
  786.     }
  787.     else
  788.     {
  789.         foreach (@$pods)
  790.         {
  791.             $ret .= join ("\n", @{$_->{lines}})."\n\n"
  792.                 unless ($_->{position});
  793.         }
  794.     }
  795.     return $ret ne '' ? $ret : undef;
  796. }
  797.  
  798. =item $string = podify_ancestors ($packagename)
  799.  
  800. Pretty-prints the ancestry of I<$packagename> from the Glib type system's
  801. point of view.  This uses Glib::Type->list_ancestors; see that function's
  802. docs for an explanation of why that's different from looking at @ISA.
  803.  
  804. Returns the new text as a string, or undef if I<$packagename> is not a
  805. registered GType.
  806.  
  807. =cut
  808.  
  809. sub podify_ancestors {
  810.     my @anc;
  811.     eval { @anc = Glib::Type->list_ancestors (shift); 1; };
  812.     return undef unless (@anc or not $@);
  813.  
  814.     my $parents = [ reverse @anc ];
  815.  
  816.     my $depth = 0;
  817.     my $str = '  '.pop(@anc)."\n";
  818.     foreach (reverse @anc) {
  819.         $str .= "  " . "     "x$depth . "+----$_\n";
  820.         $depth++;
  821.     }
  822.     $str .= "\n";
  823.  
  824.     return ($str, $parents);
  825. }
  826.  
  827. =item $string = podify_interfaces ($packagename)
  828.  
  829. Pretty-print the list of GInterfaces that I<$packagename> implements.
  830. Returns the text as a string, or undef if the type implements no interfaces.
  831.  
  832. =cut
  833.  
  834. sub podify_interfaces {
  835.     my @int;
  836.     eval { @int = Glib::Type->list_interfaces (shift); 1; };
  837.     return undef unless (@int or not defined ($@));
  838.     return '  '.join ("\n  ", @int)."\n\n";
  839. }
  840.  
  841. =item $string = podify_methods ($packagename)
  842.  
  843. Call C<xsub_to_pod> on all the xsubs under the key I<$packagename> in the
  844. data extracted by xsdocparse.pl.
  845.  
  846. Returns the new text as a string, or undef if there are no xsubs in
  847. I<$packagename>.
  848.  
  849. =cut
  850.  
  851. sub podify_methods
  852. {
  853.     my $package = shift;
  854.     my $xsubs = shift;
  855.     return undef unless $xsubs && @$xsubs;
  856.     # we will be re-using $package from here on out.
  857.  
  858.     my $str = '';
  859.     my $nfound = 0;
  860.     my $nused  = 0;
  861.     my $method;
  862.  
  863.     # based on rm's initial thought and then code/ideas by Marc 'HE'
  864.     # Brockschmidt, and Peter Haworth
  865.     @$xsubs = sort { 
  866.         my ($at, $bt);
  867.         for ($at=$a->{symname}, $bt=$b->{symname})
  868.         {
  869.             # remove prefixes
  870.             s/^.+:://;
  871.             # new's goto the front
  872.             s/^new/\x00/;
  873.             # group set's/get'ss
  874.             s/^(get|set)_(.+)/$2_$1/;
  875.             # put \<set\>'s with \<get\>'s
  876.             s/^(get|set)$/get_$1/;
  877.         }
  878.         # now actually do the sorting compare
  879.         $at cmp $bt; 
  880.     } @$xsubs;
  881.  
  882.     #$str .= "=over\n\n";
  883.     foreach (@$xsubs) {
  884.         # skip if the method is hidden
  885.         next if ($_->{hidden});
  886.         
  887.         $_->{symname} =~ m/^(?:([\w:]+)::)?([\w]+)$/;
  888.         $package = $1 || $_->{package};
  889.         $method = $2;
  890.  
  891.         # skip DESTROY altogether
  892.         next if $method eq 'DESTROY';
  893.  
  894.         ++$nfound;
  895.  
  896.         # don't document it if we can't actually call it.
  897.         if ($package->can ($method)) {
  898.             $str .= xsub_to_pod ($_, '=head2');
  899.             ++$nused;
  900.         } else {
  901.             # this print should only be temporary
  902.             print STDERR "missing: $package->$method\n";
  903.         }
  904.     }
  905.     #$str .= "=back\n\n";
  906.  
  907.     if ($nused == 0) {
  908.         # no xsubs were used.
  909.         if ($nfound > 0) {
  910.             # but some were found and not used.  
  911.             # say something to that effect.
  912.             print STDERR "No methods found for $package\n";
  913.             $str = "
  914.  
  915. Some methods defined for $package are not available in the particular
  916. library versions against which this module was compiled. 
  917.  
  918. ";
  919.         } else {
  920.             # no methods found, nothing to say
  921.             $str = undef;
  922.         }
  923.     }
  924.             
  925.     $str;
  926. }
  927.  
  928. =item $string = podify_see_alsos (@entries)
  929.  
  930. Creates a list of links to be placed in the SEE ALSO section of the page.
  931. Returns undef if nothing is in the input list.
  932.  
  933. =cut
  934.  
  935. sub podify_see_alsos
  936. {
  937.     my @entries = @_;
  938.  
  939.     return undef unless scalar @entries;
  940.     
  941.     # create the see also list
  942.     join (', ',
  943.         map {
  944.             if (/^\s*L</) {
  945.                 $_;
  946.             } else {
  947.                 "L<$_>";
  948.             }
  949.         }
  950.         @entries)
  951.         . "\n";
  952. }
  953.  
  954. =item $string = get_copyright
  955.  
  956. Returns a string that will/should be placed on each page.  You can control
  957. the text of this string by calling the class method I<set_copyright>.
  958.  
  959. If no text has been set, we will attempt to create one for you, using what
  960. has been passed to I<set_year>, I<set_authors>, and I<set_main_mod>.  The
  961. year defaults to the current year, the authors default to
  962. 'The Gtk2-Perl Team', and the main mod is empty by default.  You want the
  963. main mod to be set to the main module of your extension for the SEE ALSO
  964. section, and on the assumption that a decent license notice can be found in
  965. that module's doc, we point the reader there.
  966.  
  967. So, in general, you will want to specify at least one of these, so that you
  968. don't credit your work to us under the LGPL.
  969.  
  970. To set them do something similar to the following in the first part of your
  971. postamble section in Makefile.PL.  All occurences of <br> in the copyright
  972. are replaced with newlines, to make it easier to put in a multi-line string.
  973.  
  974.   POD_SET=Glib::GenPod::set_copyright(qq{Copyright 1999 team-foobar<br>LGPL});
  975.  
  976. Glib::MakeHelper::postamble_docs_full() does this sort of thing for you.
  977.  
  978. =cut
  979.  
  980. sub get_copyright
  981. {
  982.     my $str = $COPYRIGHT;
  983.     if (! $str) {
  984.         # construct a default.
  985.         $str = "\nCopyright (C) $YEAR $AUTHORS\n\n";
  986.         $str .= "This software is licensed under the LGPL;"
  987.              . " see $MAIN_MOD for a full notice.\n"
  988.             if $MAIN_MOD;
  989.     }
  990.  
  991.     # a way to make returns    
  992.     $str =~ s/<br>/\n/g;
  993.     return $str."\n";
  994. }
  995.  
  996. sub set_copyright {
  997.     $COPYRIGHT = shift;
  998. }
  999.  
  1000. sub set_year {
  1001.     $YEAR = shift;
  1002. }
  1003.  
  1004. sub set_authors {
  1005.     $AUTHORS = shift;
  1006. }
  1007.  
  1008. sub set_main_mod {
  1009.     $MAIN_MOD = shift;
  1010.         eval "use $MAIN_MOD";
  1011.         die($@) if($@);
  1012. }
  1013.  
  1014. sub preprocess_pod
  1015. {
  1016.     my $pod = shift;
  1017.  
  1018.     foreach (@{$pod->{lines}})
  1019.     {
  1020.         # =for include filename
  1021.         # =for include !cmd
  1022.         if (/^=for\s+include\s+(!)?(.*)$/)
  1023.         {
  1024.             if ($1)
  1025.             {
  1026.                 chomp($_ = `$2`);
  1027.             }
  1028.             else
  1029.             {
  1030.                 if (open INC, "<$2")
  1031.                 {
  1032.                     local $/ = undef;
  1033.                     $_ = <INC>;
  1034.                 }
  1035.                 else
  1036.                 {
  1037.                     carp "\n\nunable to open $2 for inclusion, at ".
  1038.                          $pod->{filename}.':'.$pod->{line};
  1039.                 }
  1040.             }
  1041.         }
  1042.     }
  1043. }
  1044.  
  1045. =back
  1046.  
  1047. =head2 Helpers
  1048.  
  1049. =over
  1050.  
  1051. =item $perl_type = convert_type ($ctypestring)
  1052.  
  1053. Convert a C type name to a Perl type name.
  1054.  
  1055. Uses %Glib::GenPod::basic_types to look for some known basic types,
  1056. and uses Glib::Type->package_from_cname to look up the registered
  1057. package corresponding to a C type name.  If no suitable mapping can
  1058. be found, this just returns the input string.
  1059.  
  1060. =cut
  1061.  
  1062. sub convert_type {
  1063.     my $typestr = shift;
  1064.  
  1065.     $typestr =~ /^\s*                # leading space
  1066.                   (?:const\s+)?            # maybe a const
  1067.                   ([:\w]+)                # the name
  1068.                   (\s*\*)?                # maybe a star
  1069.                   \s*$/x;                # trailing space
  1070.     my $ctype   = $1 || '!!';
  1071.     if ($ctype eq '!!') {
  1072.         warn "Glib::GenPod: Unable to parse type `$typestr┬┤";
  1073.     }
  1074.  
  1075.     # variant type
  1076.     $ctype =~ s/(?:_(ornull|copy|own_ornull|own|noinc_ornull|noinc))$//;
  1077.     my $variant = $1 || "";
  1078.  
  1079.     my $perl_type;
  1080.  
  1081.     if (exists $basic_types{$ctype}) {
  1082.         $perl_type = $basic_types{$ctype};
  1083.  
  1084.     } elsif ($ctype =~ m/::/) {
  1085.         # :: is not valid in GLib type names, so there's no point
  1086.         # in asking the GLib type system if it knows this name,
  1087.         # because it's probably already a perl type name.
  1088.         $perl_type = $ctype;
  1089.  
  1090.     } else {
  1091.         eval
  1092.         {
  1093.             $perl_type = Glib::Type->package_from_cname ($ctype);
  1094.             1;
  1095.         } or do {
  1096.             # this warning will have something to do with the
  1097.             # package not being registered, a fact which will
  1098.             # of interest to a person documenting or developing
  1099.             # the documented module, but not to us developing
  1100.             # the documentation generator.  thus, this warning
  1101.             # doesn't need a line number attribution.
  1102.             # let's strip that...
  1103.             $@ =~ s/\s*at (.*) line \d+\.$/./;
  1104.             warn "$@";
  1105.             # ... and fall back gracefully.
  1106.             $perl_type = $ctype;
  1107.         }
  1108.     }
  1109.  
  1110.     if ($variant && $variant =~ m/ornull/) {
  1111.         $perl_type .= " or undef";
  1112.     }
  1113.  
  1114.     $perl_type
  1115. }
  1116.  
  1117.  
  1118. =item $string = xsub_to_pod ($xsub, $sigprefix='')
  1119.  
  1120. Convert an xsub hash into a string of pod describing it.  Includes the
  1121. call signature, argument listing, and description, honoring special
  1122. switches in the description pod (arg and signature overrides).
  1123.  
  1124. =cut
  1125.  
  1126. sub xsub_to_pod {
  1127.     my $xsub = shift;
  1128.     my $sigprefix = shift || '';
  1129.     my $alias = $xsub->{symname};
  1130.     my $str;
  1131.  
  1132.     # ensure that if there's pod for this xsub, we have it now.
  1133.     # this should probably happen somewhere outside of this function,
  1134.     # but, eh...
  1135.     my @podlines = ();
  1136.     if (defined $xsub->{pod}) {
  1137.         @podlines = @{ $xsub->{pod}{lines} };
  1138.     }
  1139.  
  1140.     # look for annotations in the pod lines.
  1141.     # stuff in the pods overrides whatever we'd generate.
  1142.     my @signatures = ();
  1143.     if (@podlines) {
  1144.         # since we're modifying the list while traversing
  1145.         # it, go back to front.
  1146.         for (my $i = $#podlines ; $i >= 0 ; $i--) {
  1147.             if ($podlines[$i] =~ s/^=(for\s+)?signature\s+//) {
  1148.                 unshift @signatures, $podlines[$i];
  1149.                 splice @podlines, $i, 1;
  1150.             } elsif ($podlines[$i] =~ /^=(?:for\s+)?arg\s+
  1151.                                        (\$?[\w.]+)   # arg name
  1152.                                        (?:\s*\(([^)]*)\))? # type
  1153.                                        \s*
  1154.                                        (.*)$/x) { # desc
  1155.                 # this is a little convoluted, because we
  1156.                 # need to ensure that the args array and
  1157.                 # hash exist before using them.  we may be
  1158.                 # getting an =arg command on something that
  1159.                 # doesn't list this name in the xsub
  1160.                 # declaration.
  1161.                 $xsub->{args} = [] if not exists $xsub->{args};
  1162.                 my ($a, undef) =
  1163.                     grep { $_->{name} eq $1 }
  1164.                                   @{ $xsub->{args} };
  1165.                 $a = {}, push @{$xsub->{args}}, $a
  1166.                     if not defined $a;
  1167.                 $a->{name} = $1 if not defined $a->{name};
  1168.                 $a->{desc} = $3;
  1169.                 if ($2) {
  1170.                     if ($2 =~ m/^_*hide_*$/i) {
  1171.                         $a->{hide}++;
  1172.                     } else {
  1173.                         $a->{type} = $2;
  1174.                     }
  1175.                 }
  1176.                 # "just eat it!  eat it!  get yourself and
  1177.                 # egg and beat it!"  -- weird al
  1178.                 splice @podlines, $i, 1;
  1179.             }
  1180.         }
  1181.     }
  1182.  
  1183.     #
  1184.     # the call signature(s).
  1185.     #
  1186.     push @signatures, compile_signature ($xsub)
  1187.         unless @signatures;
  1188.  
  1189.     foreach (@signatures) {
  1190.         s/>(\w+)/>B<$1>/;
  1191.         $str .= "$sigprefix $_\n\n";
  1192.     }
  1193.  
  1194.     #
  1195.     # list all the arg types.
  1196.     #
  1197.     my @args;
  1198.     @args = @{ $xsub->{args} } if ($xsub->{args});
  1199.     shift @args unless $xsub->{function};
  1200.  
  1201.     $str .= "=over\n\n" if @args;
  1202.     foreach my $a (@args) {
  1203.         my $type;
  1204.         next if $a->{hide};
  1205.         if ($a->{name} eq '...') {
  1206.             $type = 'list';
  1207.         } else {
  1208.             if (not defined $a->{type}) {
  1209.                 warn "$alias: no type defined for arg"
  1210.                    . " \$$a->{name}\n";
  1211.                 $type = "(unknown)";
  1212.             } else {
  1213.                 $type = convert_arg_type ($a->{type});
  1214.             }
  1215.         }
  1216.         $str .= "=item * "
  1217.               . fixup_arg_name ($a->{name})
  1218.               . " ($type) "
  1219.               . ($a->{desc} ? $a->{desc} : "")
  1220.               . "\n\n";
  1221.     }
  1222.     $str .= "=back\n\n" if @args;
  1223.  
  1224.     if (@podlines) {
  1225.         shift @podlines;
  1226.         pop @podlines;
  1227.         $str .= join("\n", @podlines)."\n\n";
  1228.     }
  1229.  
  1230.     $str .= "May croak with a L<Glib::Error> in \$@ on failure.\n\n"
  1231.         if ($xsub->{gerror});
  1232.  
  1233.     $str .= "This method is deprecated and should not be used in newly written code.\n\n"
  1234.         if ($xsub->{deprecated});
  1235.  
  1236.  
  1237.     # When there are multiple version guards of the same type, we only want
  1238.     # the innermost.
  1239.     my %version_conditions;
  1240.     my %prefix_to_name = (
  1241.         GTK => 'gtk+',
  1242.     );
  1243.     foreach (@{ $xsub->{preprocessor_conditionals} }) {
  1244.         if (m/^\s*(\w+)_CHECK_VERSION\s*\((\d+),\s*(\d+)/) {
  1245.             my $lib_name = $prefix_to_name{$1} || lc $1;
  1246.             $version_conditions{$lib_name} = "$2.$3";
  1247.         }
  1248.     }
  1249.     foreach my $lib_name (keys %version_conditions) {
  1250.         $str .= "Since: $lib_name $version_conditions{$lib_name}\n\n";
  1251.     }
  1252.  
  1253.     $str
  1254. }
  1255.  
  1256. =item $string = compile_signature ($xsub)
  1257.  
  1258. Given an xsub hash, return a string with the call signature for that
  1259. xsub.
  1260.  
  1261. =cut
  1262.  
  1263. sub compile_signature {
  1264.     my $xsub = shift;
  1265.  
  1266.     my @args;
  1267.     @args = @{ $xsub->{args} } if ($xsub->{args});
  1268.  
  1269.     my $call;
  1270.  
  1271.     if ($xsub->{function}) {
  1272.         $call = $xsub->{symname};
  1273.     } else {
  1274.         # find the method's short name
  1275.         my $method = $xsub->{symname};
  1276.         $method =~ s/^(.*):://;
  1277.  
  1278.         my $package = $1 || $xsub->{package};
  1279.  
  1280.         # methods always eat the first arg as the instance.
  1281.         my $instance = shift @args;
  1282.  
  1283.         my $obj = defined ($instance->{type})
  1284.                 ? '$'.$instance->{name}
  1285.             : $package;
  1286.  
  1287.         $call = "$obj\-E<gt>$method";
  1288.     }
  1289.  
  1290.     # compile the arg list string
  1291.     my $argstr = join ", ", map {
  1292.             fixup_arg_name ($_->{name})
  1293.             . (defined $_->{default}
  1294.                ? '='.fixup_default ($_->{default})
  1295.                : '')
  1296.         } @args;
  1297.  
  1298.     # compile the return list string
  1299.     my @outlist = map { $_->{name} } @{ $xsub->{outlist} };
  1300.     if (defined $xsub->{return_type}) {
  1301.         my @retnames = map { convert_return_type_to_name ($_) }
  1302.                 @{ $xsub->{return_type} };
  1303.         unshift @outlist, @retnames;
  1304.     }
  1305.     my $retstr = @outlist
  1306.                ? (@outlist > 1
  1307.               ? "(".join (", ", @outlist).")"
  1308.               : $outlist[0]
  1309.              )." = "
  1310.            : (defined $xsub->{codetype} and
  1311.               $xsub->{codetype} eq 'PPCODE'
  1312.               ? 'list = '
  1313.               : ''
  1314.              );
  1315.     
  1316.     "$retstr$call ".($argstr ? "($argstr)" : "");
  1317. }
  1318.  
  1319. =item $string = fixup_arg_name ($name)
  1320.  
  1321. Prepend a $ to anything that's not the literal ellipsis string '...'.
  1322.  
  1323. =cut
  1324.  
  1325. sub fixup_arg_name {
  1326.     my $name = shift;
  1327.     my $sigil = $name eq '...' ? '' : '$';
  1328.     return $sigil.$name;
  1329. }
  1330.  
  1331. =item fixup_default
  1332.  
  1333. Mangle default parameter values from C to Perl values.  Mostly, this
  1334. does NULL => undef.
  1335.  
  1336. =cut
  1337.  
  1338. sub fixup_default {
  1339.     my $value = shift;
  1340.     return (defined ($value) 
  1341.             ? ($value eq 'NULL' ? 'undef' : $value)
  1342.         : '');
  1343. }
  1344.  
  1345. =item convert_arg_type
  1346.  
  1347. C type to Perl type conversion for argument types.
  1348.  
  1349. =cut
  1350.  
  1351. sub convert_arg_type { convert_type (@_) }
  1352.  
  1353.  
  1354. =item convert_return_type_to_name
  1355.  
  1356. C type to Perl type conversion suitable for return types.
  1357.  
  1358. =cut
  1359.  
  1360. sub convert_return_type_to_name {
  1361.     my $type = convert_type (@_);
  1362.     if ($type =~ s/^.*:://) {
  1363.         $type = lc $type;
  1364.     }
  1365.     return $type;
  1366. }
  1367.  
  1368. sub mkdir_p {
  1369.     my $path = shift;
  1370.     my @dirs = File::Spec->splitdir ($path);
  1371.     my $p = shift @dirs;
  1372.     do {
  1373.         mkdir $p or die "can't create dir $p: $!\n" unless -d $p;
  1374.         $p = File::Spec->catdir ($p, shift @dirs);
  1375.     } while (@dirs);
  1376. }
  1377.  
  1378. sub convert_to_cname {
  1379.     my $perlname = shift;
  1380.     my $cname = $perlname;
  1381.     if($perlname =~ /^Gtk2::Gdk::/) {
  1382.         $cname =~ s/^Gtk2::Gdk::/Gdk/;
  1383.     } elsif($perlname =~ m/^Gtk2::/) {
  1384.         $cname =~ s/^Gtk2::/Gtk/;
  1385.     } elsif($perlname =~ m/^Gnome2::Bonobo::/) {
  1386.         $cname =~ s/^Gnome2::Bonobo::/Bonobo/;
  1387.     } elsif($perlname =~ m/^Gnome2::/) {
  1388.         $cname =~ s/^Gnome2::/Gnome/;
  1389.     }
  1390.     $cname =~ s/:://g;
  1391.     my $tmp;
  1392.     eval { $tmp = Glib::Type->package_from_cname($cname); };
  1393.     if($@ || $tmp ne $perlname) {
  1394.         return;
  1395.     }
  1396.     return $cname;
  1397. }
  1398.  
  1399. 1;
  1400. __END__
  1401.  
  1402. =back
  1403.  
  1404. =head1 SEE ALSO
  1405.  
  1406. L<Glib::ParseXSDoc>
  1407.  
  1408. =head1 AUTHORS
  1409.  
  1410. muppet bashed out the xsub signature generation in a few hours on a wednesday
  1411. night when band practice was cancelled at the last minute; he and ross
  1412. mcfarland hacked this module together via irc and email over the next few days.
  1413.  
  1414. =head1 COPYRIGHT AND LICENSE
  1415.  
  1416. Copyright (C) 2003-2004 by the gtk2-perl team
  1417.  
  1418. This library is free software; you can redistribute it and/or modify
  1419. it under the terms of the Lesser General Public License (LGPL).  For 
  1420. more information, see http://www.fsf.org/licenses/lgpl.txt
  1421.  
  1422. =cut
  1423.